home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / SciAn / src / ScianWindowFunctions.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  1KB  |  34 lines

  1. /*ScianWindowFunctions.h
  2.   Eric Pepke
  3.   10 August 1993
  4.  
  5.   External stuff for ScianWindowFunctions
  6. */
  7.  
  8. /*Window functions*/
  9. #define WF_SHOWPANEL    "Show Control Panel"    /*Show a window's panel*/
  10. #define WF_HIDEPANEL    "Hide Control Panel"    /*Hide a window's panel*/
  11. #define WF_FULLSCREEN    "Full Screen"        /*Make a window go to full screen*/
  12. #define WF_VIDEOSCREEN    "Video Screen"        /*Go to video screen*/
  13. #define WF_DOUBLEVID    "Double Video Screen"    /*Go to 2 * vid screen*/
  14. #define WF_PHSCSCREEN    "PHSCologram Screen"    /*Go to PHSCologram screen*/
  15. #define WF_PREVSCREEN    "Previous Location"    /*Go to previous location*/
  16. #define WF_SHOWFPCONTROLS "Show Front Panel Controls"
  17. #define WF_SHOWBPCONTROLS "Show Back Panel Controls"
  18. #define WF_SHOWSPCONTROLS "Show Space Controls"
  19. #define WF_TILEFULL    "Tile Over Full Screen"    /*Tile vis windows over full screen*/
  20. #define WF_TILEVIDEO    "Tile Over Video Screen"
  21. #define WF_SAVESCREEN    "Save Screen to File"
  22. #define WF_SAVEWINDOW    "Save Window to File"
  23. #define WF_SAVEFWINDOW    "Save Framed Window to File"
  24.  
  25. #ifdef PROTO
  26. void InitWindowFunctions(void);
  27. void KillWindowFunctions(void);
  28. Bool WindowFunctionScriptLine(char *);
  29. #else
  30. void InitWindowFunctions();
  31. void KillWindowFunctions();
  32. Bool WindowFunctionScriptLine();
  33. #endif
  34.